home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / profile.d / tcsh-settings.csh < prev   
Text File  |  2006-01-09  |  1KB  |  66 lines

  1. ## Gentoo system tcsh script
  2. ##
  3. ## Based on the TCSHRC package (http://tcshrc.sourceforge.net)
  4. ##
  5. ## Please do not change this file!  Place your personal customizations in
  6. ## ~/.tcshrc and system-wide customizations in /etc/profiles.d/local.csh
  7. ##
  8. ## .tcshrc.set            2Sep2001, Simos Xenitellis (simos@hellug.gr)
  9. ##
  10. ## 2005-09-27  --  Fabian Groffen (grobian@gentoo.org)
  11. ##     Fixed many reported bugs
  12. ##     Moved enhancements to get near the tcsh raw defaults
  13. ## 2003-01-13  --  Alain Penders (alain@gentoo.org)
  14. ##     Renamed to /etc/profile.d/tcsh-settings
  15. ##     Major rework - settings are now closer to a normal default.
  16. ##
  17.  
  18.  
  19. ##
  20. ## Setup some useful globals.
  21. ##
  22. if ( ! $?HOST ) then
  23.     setenv HOST `hostname -s`
  24. endif
  25. if ( -r /etc/inputrc && ! $?INPUTRC ) then
  26.     setenv INPUTRC /etc/inputrc
  27. endif
  28. #setenv COLORTERM 1
  29.  
  30.  
  31. ##
  32. ## Everything beyond this point is for interactive shells only!
  33. ##
  34. if (! ${?prompt}) goto end
  35.  
  36. ##
  37. ## Handle history
  38. ##
  39. set history = 200
  40. set histdup = erase
  41. if ( $?TCSH_SHELL_SAVEHISTORY ) then
  42.     set savehist = ( $history merge )
  43. else
  44.     unset savehist
  45. endif
  46.  
  47. # Enable editing in EUC encoding for the languages where this make sense:
  48. # (From SuSE's csh.cshrc)
  49. if ( ${?LANG} ) then
  50.   switch ( ${LANG:r} )
  51.     case ja*:
  52.       set dspmbyte=euc
  53.       breaksw
  54.     case ko*:
  55.       set dspmbyte=euc
  56.       breaksw
  57.     case zh_TW*:
  58.       set dspmbyte=big5
  59.       breaksw
  60.     default:
  61.       breaksw
  62.   endsw
  63. endif
  64.  
  65. end:
  66.